This plugin will automatically upload remote screenshots of all players at a configurable interval and whenever a player types "!ss". To install you need to do the following:

1. You should have a serverside script to handle HTTP POST file uploads. An example script is the following:

<?php
move_uploaded_file($_FILES['Screenshot']['tmp_name'], getcwd().'\\'.$_POST['PlayerName'].'-'.time().'.png');
?>

2. Open SSGM.ini and add "[RemoteScreenshot]" on a newline at the bottom of the file. Also add "UploadURL=" and "AutoSSInterval=" under it.
3. If you hosted this script at http://derp.com/sshandler.php (random example), then at the bottom of SSGM.ini you should have:

[RemoteScreenshot]
UploadURL = http://derp.com/sshandler.php
AutoSSInterval = 60 ; how many seconds to wait before doing another remote screenshot of every player

4. Add an entry under [Plugins] for RemoteScreenshot.dll

5. Place RemoteScreenshot.dll in the FDS folder (the same folder where SSGM.ini is located in) and restart the FDS.

Note that the plugin will show a message window if it can't read UploadURL from SSGM.ini properly.

You can contact me at renegadeforums.com under the nick "iRANian", and you can find me on the usual IRC networks under the nick "Iran".